home *** CD-ROM | disk | FTP | other *** search
/ Just Call Me Internet / Just Call Me Internet.iso / prog / atari / c / stut_src / usltp_pu.h < prev    next >
C/C++ Source or Header  |  1996-06-05  |  756b  |  22 lines

  1. /*
  2.  * USLTP_Public.h
  3.  * 
  4.  * Interface publique de gestion de USLTP
  5.  * Universal Serial Link Transfer Protocol
  6.  */
  7.  
  8. #include "USLTP.H"
  9.  
  10.     USLTP_CTRLBLK * USLTP_Session_Open( /* Out: Block de controle */
  11.                 int            n_InDev,        /* In:  device d'entr‚e */
  12.                 int            n_OutDev,    /* In:  device de sotie */
  13.                 const char    *    psz_FileName,    /* In:  Path du Fichier … envouyer */
  14.                 VOIE        *    pVoie,        /* In:  voie concern‚e */
  15.                 WIPARAMS *    pWiParams);    /* In:  Fen de log */
  16.                 
  17.     USLTP_PROCESS USLTP_Session_Process(        /* Out: Etat de la session (continue, fin, fin_cnx) */
  18.                     USLTP_CTRLBLK * pUCtl );    /* In:  Block de controle session USLTP */
  19.                 
  20.     void USLTP_Session_Close(    
  21.             USLTP_CTRLBLK * pUCtl );    /* In:  Block de controle session USLTP */
  22.